home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / automake-1.5 / am / data.am < prev    next >
Encoding:
Text File  |  2005-10-16  |  2.4 KB  |  77 lines

  1. ## automake - create Makefile.in from Makefile.am
  2. ## Copyright 1994, 1995, 1996, 1998, 1999, 2001 Free Software Foundation, Inc.
  3.  
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2, or (at your option)
  7. ## any later version.
  8.  
  9. ## This program is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ## GNU General Public License for more details.
  13.  
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with this program; if not, write to the Free Software
  16. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. ## 02111-1307, USA.
  18.  
  19. ## ------------ ##
  20. ## Installing.  ##
  21. ## ------------ ##
  22.  
  23. if %?INSTALL%
  24. _am_installdirs += $(DESTDIR)$(%NDIR%dir)
  25. ?EXEC?.PHONY install-exec-am: install-%DIR%%PRIMARY%
  26. ?!EXEC?.PHONY install-data-am: install-%DIR%%PRIMARY%
  27. install-%DIR%%PRIMARY%: $(%DIR%_%PRIMARY%)
  28.     @$(NORMAL_INSTALL)
  29.     $(mkinstalldirs) $(DESTDIR)$(%NDIR%dir)
  30. ## Funny invocation because Makefile variable can be empty, leading to
  31. ## a syntax error in sh.
  32.     @list='$(%DIR%_%PRIMARY%)'; for p in $$list; do \
  33. ## A file can be in the source directory or the build directory.
  34.       if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  35. ## If the _%PRIMARY% variable has an entry like foo/bar, install it as
  36. ## $(destdir)/bar, not $(destdir)/foo/bar.  The user can always make a
  37. ## new dir variable for the latter case.
  38. ?BASE?      f="`echo $$p | sed -e 's|^.*/||'`"; \
  39. ?!BASE?      f="$$p"; \
  40.       echo " $(INSTALL_%ONE_PRIMARY%) $$d$$p $(DESTDIR)$(%NDIR%dir)/$$f"; \
  41.       $(INSTALL_%ONE_PRIMARY%) $$d$$p $(DESTDIR)$(%NDIR%dir)/$$f; \
  42.     done
  43. endif %?INSTALL%
  44.  
  45.  
  46. ## -------------- ##
  47. ## Uninstalling.  ##
  48. ## -------------- ##
  49.  
  50. if %?INSTALL%
  51. .PHONY uninstall-am: uninstall-%DIR%%PRIMARY%
  52. uninstall-%DIR%%PRIMARY%:
  53.     @$(NORMAL_UNINSTALL)
  54.     @list='$(%DIR%_%PRIMARY%)'; for p in $$list; do \
  55. ?BASE?      f="`echo $$p | sed -e 's|^.*/||'`"; \
  56. ?!BASE?      f="$$p"; \
  57.       echo " rm -f $(DESTDIR)$(%NDIR%dir)/$$f"; \
  58.       rm -f $(DESTDIR)$(%NDIR%dir)/$$f; \
  59.     done
  60. endif %?INSTALL%
  61.  
  62.  
  63. ## ---------- ##
  64. ## Cleaning.  ##
  65. ## ---------- ##
  66.  
  67. ## Nothing.
  68.  
  69.  
  70. ## -------------- ##
  71. ## Distributing.  ##
  72. ## -------------- ##
  73.  
  74. if %?DIST%
  75. DIST_COMMON += $(%DIR%_%PRIMARY%)
  76. endif %?DIST%
  77.